home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / LEDIT108.ZIP / LEMFC / LEMFC_1D.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-25  |  939 b   |  41 lines

  1. class CLemfc_1Doc : public CDocument
  2. {
  3. protected: // create from serialization only
  4.     CLemfc_1Doc();
  5.     DECLARE_DYNCREATE(CLemfc_1Doc)
  6.  
  7. // Attributes
  8. public:
  9.  
  10. // Operations
  11. public:
  12.  
  13. // Overrides
  14.     // ClassWizard generated virtual function overrides
  15.     //{{AFX_VIRTUAL(CLemfc_1Doc)
  16.     public:
  17.     virtual BOOL OnNewDocument();
  18.     //}}AFX_VIRTUAL
  19.  
  20. // Implementation
  21. public:
  22.     virtual ~CLemfc_1Doc();
  23.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  24. #ifdef _DEBUG
  25.     virtual void AssertValid() const;
  26.     virtual void Dump(CDumpContext& dc) const;
  27. #endif
  28.  
  29. protected:
  30.  
  31. // Generated message map functions
  32. protected:
  33.     //{{AFX_MSG(CLemfc_1Doc)
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code !
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.